home *** CD-ROM | disk | FTP | other *** search
/ PC Open 93 / PC Open 93 CD 2.bin / PDF / webdeveloper / lezione_2 / Listato 2.txt < prev    next >
Encoding:
Text File  |  2003-10-31  |  866 b   |  32 lines

  1. LISTATO 2 - SORGENTI DI DATICOMPLETI2.ASP
  2.  
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4.  
  5. <html>
  6. <head>
  7.     <title>Un form</title>
  8. </head>
  9.  
  10. <body>
  11.  
  12.  
  13. <p>Caro Mario, ho visto che ti interessi di musica. Ti dispiace indicarmi il nome del tuo cantante o gruppo preferito?</p>
  14. <form action="visdaticompleti2.asp" method="post">
  15.  
  16. <input type="hidden" name="txt_nome" value="Mario">
  17. <input type="hidden" name="txt_cognome" value="Rossi">
  18. <input type="hidden" name="rad_sesso" value="M">
  19. <input type="hidden" name="sel_eta" value="0-20">
  20. <input type="hidden" name="chk_hobby" value="Musica">
  21. <input type="hidden" name="txa_note" value="Ecco qualche nota">
  22.  
  23. Cantante o gruppo preferito <input type="text" name="txt_cantante">
  24.  
  25. <input type="submit" value="Invia">
  26.  
  27. </form>
  28.  
  29. </body>
  30. </html>
  31.  
  32.